GET   https://api.d-tools.com/SI/Subscribe/COProjects?projectId={projectId}&clients[0]={clients[0]}&clients[1]={clients[1]}&progresses[0]={progresses[0]}&progresses[1]={progresses[1]}&includeImported={includeImported}&searchText={searchText}&pageNumber={pageNumber}&pageSize={pageSize}

(DEPRECATED) Get change order projects published by a SI user.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectId

Clients to filter projects (Optional)

string

None.

clients

Clients to filter projects (Optional)

Collection of string

None.

progresses

Progresses to filter projects (Optional)

Collection of string

None.

includeImported

Boolean. Include already imported projects. Optional with default value false which means by default you will only see projects which are not imported.

boolean

Default value is False

searchText

The search text.

string

None.

pageNumber

The page number.

integer

Default value is 1

pageSize

The page size.

integer

Default value is 50

Body Parameters

None.

Response Information

Resource Description

COProjectsResult
NameDescriptionTypeAdditional information
COProjects

Change Order Projects array

Collection of COProjectInfo

None.

TotalCount

Total count of change order projects

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "COProjects": [
    {
      "ProjectId": "sample string 1",
      "COName": "sample string 2",
      "CODescription": "sample string 3",
      "Id": "sample string 4",
      "IntegrationProjectId": "sample string 5",
      "ClientId": "sample string 6",
      "Client": "sample string 7",
      "ClientNumber": "sample string 8",
      "Name": "sample string 9",
      "Number": "sample string 10",
      "Progress": "sample string 11",
      "Approved": true,
      "CONumber": 1,
      "CurrencyCode": "sample string 13",
      "Price": 14.0,
      "ImportedOn": "2024-04-29T11:03:24.5463976+00:00",
      "PublishedOn": "2024-04-29T11:03:24.5463976+00:00",
      "Deleted": true,
      "Archived": true
    },
    {
      "ProjectId": "sample string 1",
      "COName": "sample string 2",
      "CODescription": "sample string 3",
      "Id": "sample string 4",
      "IntegrationProjectId": "sample string 5",
      "ClientId": "sample string 6",
      "Client": "sample string 7",
      "ClientNumber": "sample string 8",
      "Name": "sample string 9",
      "Number": "sample string 10",
      "Progress": "sample string 11",
      "Approved": true,
      "CONumber": 1,
      "CurrencyCode": "sample string 13",
      "Price": 14.0,
      "ImportedOn": "2024-04-29T11:03:24.5463976+00:00",
      "PublishedOn": "2024-04-29T11:03:24.5463976+00:00",
      "Deleted": true,
      "Archived": true
    }
  ],
  "TotalCount": 1
}

application/xml, text/xml

Sample:
<COProjectsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTools.SICloudAPI.DataObjects">
  <COProjects>
    <COProjectInfo>
      <Approved>true</Approved>
      <Archived>true</Archived>
      <CONumber>1</CONumber>
      <Client>sample string 7</Client>
      <ClientId>sample string 6</ClientId>
      <ClientNumber>sample string 8</ClientNumber>
      <CurrencyCode>sample string 13</CurrencyCode>
      <Deleted>true</Deleted>
      <Id>sample string 4</Id>
      <ImportedOn>2024-04-29T11:03:24.5463976+00:00</ImportedOn>
      <IntegrationProjectId>sample string 5</IntegrationProjectId>
      <Name>sample string 9</Name>
      <Number>sample string 10</Number>
      <Price>14</Price>
      <Progress>sample string 11</Progress>
      <PublishedOn>2024-04-29T11:03:24.5463976+00:00</PublishedOn>
      <CODescription>sample string 3</CODescription>
      <COName>sample string 2</COName>
      <ProjectId>sample string 1</ProjectId>
    </COProjectInfo>
    <COProjectInfo>
      <Approved>true</Approved>
      <Archived>true</Archived>
      <CONumber>1</CONumber>
      <Client>sample string 7</Client>
      <ClientId>sample string 6</ClientId>
      <ClientNumber>sample string 8</ClientNumber>
      <CurrencyCode>sample string 13</CurrencyCode>
      <Deleted>true</Deleted>
      <Id>sample string 4</Id>
      <ImportedOn>2024-04-29T11:03:24.5463976+00:00</ImportedOn>
      <IntegrationProjectId>sample string 5</IntegrationProjectId>
      <Name>sample string 9</Name>
      <Number>sample string 10</Number>
      <Price>14</Price>
      <Progress>sample string 11</Progress>
      <PublishedOn>2024-04-29T11:03:24.5463976+00:00</PublishedOn>
      <CODescription>sample string 3</CODescription>
      <COName>sample string 2</COName>
      <ProjectId>sample string 1</ProjectId>
    </COProjectInfo>
  </COProjects>
  <TotalCount>1</TotalCount>
</COProjectsResult>